home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1996 #15 / Monster Media Number 15 (Monster Media)(July 1996).ISO / prog_d / rtdc.zip / TESTUNI2.DFM / TESTUNI2.txt
Text File  |  1995-09-03  |  3KB  |  183 lines

  1. object Form1: TForm1
  2.   Left = 328
  3.   Top = 169
  4.   AutoScroll = False
  5.   Caption = 'Form1'
  6.   ClientHeight = 306
  7.   ClientWidth = 414
  8.   Font.Color = clBlack
  9.   Font.Height = -13
  10.   Font.Name = 'MS Sans Serif'
  11.   Font.Style = []
  12.   PixelsPerInch = 96
  13.   Scaled = False
  14.   OnCreate = FormCreate
  15.   TextHeight = 16
  16.   object Label3: TLabel
  17.     Left = 124
  18.     Top = 199
  19.     Width = 61
  20.     Height = 13
  21.     Caption = '00:00:00'
  22.     Font.Color = clBlack
  23.     Font.Height = -12
  24.     Font.Name = 'MS Sans Serif'
  25.     Font.Style = [fsBold]
  26.     ParentFont = False
  27.   end
  28.   object Label4: TLabel
  29.     Left = 299
  30.     Top = 199
  31.     Width = 62
  32.     Height = 13
  33.     Caption = '00:00:00'
  34.     Font.Color = clBlack
  35.     Font.Height = -12
  36.     Font.Name = 'MS Sans Serif'
  37.     Font.Style = [fsBold]
  38.     ParentFont = False
  39.   end
  40.   object Bevel1: TBevel
  41.     Left = 8
  42.     Top = 46
  43.     Width = 393
  44.     Height = 123
  45.   end
  46.   object Label7: TLabel
  47.     Left = 26
  48.     Top = 59
  49.     Width = 80
  50.     Height = 16
  51.     Caption = 'Recordcount:'
  52.   end
  53.   object Label8: TLabel
  54.     Left = 111
  55.     Top = 59
  56.     Width = 65
  57.     Height = 13
  58.     AutoSize = False
  59.     Caption = '0'
  60.   end
  61.   object Panel1: TPanel
  62.     Left = 0
  63.     Top = 0
  64.     Width = 414
  65.     Height = 41
  66.     Align = alTop
  67.     TabOrder = 0
  68.     object Label1: TLabel
  69.       Left = 8
  70.       Top = 8
  71.       Width = 43
  72.       Height = 16
  73.       Caption = 'Source'
  74.     end
  75.     object Label2: TLabel
  76.       Left = 200
  77.       Top = 8
  78.       Width = 67
  79.       Height = 16
  80.       Caption = 'Destination'
  81.     end
  82.     object ComboBox1: TComboBox
  83.       Left = 56
  84.       Top = 8
  85.       Width = 129
  86.       Height = 24
  87.       ItemHeight = 16
  88.       TabOrder = 0
  89.       OnChange = ComboBox1Change
  90.     end
  91.     object Edit1: TEdit
  92.       Left = 280
  93.       Top = 8
  94.       Width = 97
  95.       Height = 24
  96.       TabOrder = 1
  97.       OnChange = Edit1Change
  98.     end
  99.   end
  100.   object Button1: TButton
  101.     Left = 20
  102.     Top = 192
  103.     Width = 93
  104.     Height = 33
  105.     Caption = 'TBatchMove'
  106.     Font.Color = clBlack
  107.     Font.Height = -12
  108.     Font.Name = 'MS Sans Serif'
  109.     Font.Style = [fsBold]
  110.     ParentFont = False
  111.     TabOrder = 3
  112.     OnClick = Button1Click
  113.   end
  114.   object Button2: TButton
  115.     Left = 195
  116.     Top = 192
  117.     Width = 94
  118.     Height = 33
  119.     Caption = 'TRtDbCopy'
  120.     Font.Color = clBlack
  121.     Font.Height = -12
  122.     Font.Name = 'MS Sans Serif'
  123.     Font.Style = [fsBold]
  124.     ParentFont = False
  125.     TabOrder = 4
  126.     OnClick = Button2Click
  127.   end
  128.   object CheckBox1: TCheckBox
  129.     Left = 294
  130.     Top = 99
  131.     Width = 79
  132.     Height = 13
  133.     Caption = 'Mappings'
  134.     TabOrder = 2
  135.   end
  136.   object RadioGroup1: TRadioGroup
  137.     Left = 24
  138.     Top = 88
  139.     Width = 249
  140.     Height = 65
  141.     Caption = 'CopyMode'
  142.     Columns = 2
  143.     Items.Strings = (
  144.       'Append'
  145.       'Update'
  146.       'AppendUpdate'
  147.       'Delete'
  148.       'Copy')
  149.     TabOrder = 1
  150.   end
  151.   object Database1: TDatabase
  152.     DatabaseName = 'TEST'
  153.     LoginPrompt = False
  154.     Left = 16
  155.     Top = 256
  156.   end
  157.   object Table1: TTable
  158.     DatabaseName = 'TEST'
  159.     Left = 48
  160.     Top = 256
  161.   end
  162.   object Table2: TTable
  163.     DatabaseName = 'TEST'
  164.     Left = 80
  165.     Top = 256
  166.   end
  167.   object BatchMove1: TBatchMove
  168.     Destination = Table2
  169.     Mode = batCopy
  170.     Source = Table1
  171.     Left = 112
  172.     Top = 256
  173.   end
  174.   object RtDbCopy1: TRtDbCopy
  175.     Destination = Table2
  176.     Mode = batCopy
  177.     Source = Table1
  178.     Transaction = False
  179.     Left = 144
  180.     Top = 256
  181.   end
  182. end
  183.